home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d6 / mygl200.arc / GLINST.BAT < prev    next >
DOS Batch File  |  1988-02-21  |  617b  |  33 lines

  1. echo off
  2. echo *
  3. echo **    Copies GL Version 1.15 files from Drive A to Drive C
  4. echo ***
  5. echo ***   Creates a subdirectory on Drive C called \GL
  6. echo ****  Starts GL and creates the user file MYGL.INF
  7. echo ***   When GL begins, enter a password or just hit Enter
  8. echo ***
  9. echo **    PRESS CONTROL-C or BREAK if you wish to QUIT right now!
  10. echo *
  11. pause
  12. echo Working...
  13. a:
  14. cd \
  15. if exist gl.exe goto :a
  16. goto :funny
  17. :a
  18. if exist userinfo.doc goto :b
  19. goto :funny
  20. :b
  21. c:
  22. cd \
  23. md \gl
  24. cd \gl
  25. copy a:*.* /v
  26. gl mygl.inf
  27. goto :end
  28. :funny
  29. echo That's funny, the disk in Drive A is not GL's!
  30. :end
  31. 
  32.  
  33.